home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Demos / Bowers Development / AppMaker 2.1.sit / AppMaker 2.1 / Examples / TCL / AMReminder / AMReminderMain.cp / AMReminderMain.cp
Encoding:
Text File  |  1997-02-26  |  302 b   |  15 lines  |  [TEXT/KAHL]

  1. /* AMReminderMain.cp -- main program */
  2. /* Created 2/25/97 4:56 PM by AppMaker */
  3.  
  4. #include "AMReminderApp.h"
  5.  
  6. extern    CApplication    *gApplication;
  7.  
  8. void main ()
  9. {
  10.     gApplication = new CAMReminderApp;
  11.     ((CAMReminderApp *) gApplication)->IAMReminderApp ();
  12.     gApplication->Run ();
  13.     gApplication->Exit ();
  14. }
  15.